home *** CD-ROM | disk | FTP | other *** search
- echo off
- echo : PC-KAT (C) COPYRIGHT 1986, R.H. MARTIN. PRINT PC-KAT ANNOUNCEMENT.
- echo :
- echo : Please read and answer 1, 2 or 3:
- echo :
- echo : The PC-KAT Announcement is not needed to run PC-KAT. You may how-
- echo : ever desire to inform someone else about PC-KAT using just 1 page
- echo : of information. The PC-KAT Announcement requires that you can
- echo : print 132 columns of information on your output paper. You can
- echo : choose to accomplish this in two ways, one of which requires that
- echo : have beforehand setup printer control codes with the print program,
- echo : KPRINT.EXE which comes with PC-KAT. It requires that you have
- echo : a KPRINT.CTL file setup for your printer. Type: KPRINT -?K
- echo : and press ENTER at the DOS level for help doing this.
- echo :
- echo : 1. I have a printer ready to print using KPRINT.
- echo : 2. I have controlled my printer manually to printout 132 columns.
- echo : My printer is ready to print. [Printout will look same as # 1.]
- echo : 3. I want to exit this procedure right now.
- kprint -?1
- if not errorlevel 1 goto bad_hit
- if errorlevel 4 goto bad_hit
- if errorlevel 3 goto end
- if errorlevel 2 goto manual
- if errorlevel 1 goto kprint
- :bad_hit
- echo You did not choose a correct number; rerun this procedure again
- goto end
- :manual
- if not exist katad.kp goto misskp
- type katad.kp>prn
- echo >prn
- goto end
- :kprint
- if not exist katad.kp goto misskp
- kprint -kmxnhc katad.kp
- goto end
- :misskp
- echo You're missing the file AD.KP
- :end